home *** CD-ROM | disk | FTP | other *** search
-
- #import <appkit/appkit.h>
-
- @interface WWSliderCell:SliderCell
- {
- id interp;
- id minText;
- id maxText;
- id valText;
- char *controlString;
- int controlStringSize;
- char *sprintfControlString;
-
- char *tclExpression;
- int tclExpressionSize;
- char *tclVar;
- int tclVarSize;
- char *tclCommand;
- int tclCommandSize;
- BOOL autoSendP;
- BOOL usingPrivateImage;
- BOOL colorChanged;
- NXColor color;
- BOOL tclCommandDirty;
- }
-
- - init;
- - awake;
- - write:(NXTypedStream *)stream;
- - read:(NXTypedStream *)stream;
-
- - setMinValue:(double)aDouble;
- - setMaxValue:(double)aDouble;
- - setMinText:sender;
- - setMaxText:sender;
- - setValText:sender;
-
- - setColor:(NXColor)newColor;
- - (NXColor)color;
- - generateImage:(const NXRect *)theFrame;
-
- - setAutoSendP:(BOOL)newAutoSendP;
- - (BOOL)autoSendP;
-
- - setControlString:(const char *)str;
- - (const char *)controlString;
- - setTclExpression:(const char *)str;
- - (const char *)tclExpression;
- - setTclVar:(const char *)varName;
- - (const char *)tclVar;
- - setTclCommand:(const char *)str;
- - (const char *)tclCommand;
-
- - updateInterp;
-
- @end
-